/*选项卡*/
.zUI-bar{
    width: 100%;
    color: #3a3a3a;
}
.zUI-bar *{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.zUI-bar .bar-box{
    width: 100%;
    display: flex;
    flex-direction: row;
    line-height: 30px;
}
.zUI-bar .content{
    width: 100%;
/*  height: calc(100% - 30px);   */
    overflow: hidden;

}
.zUI-bar .content .wrap{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: none;
    padding: 10px 0 0;
    background: white;
}

.zUI-bar .bar-box .nav{
    padding: 0 24px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
    -webkit-transition: all .2s;font-size: 22px;
}
.zUI-bar .bar-box .nav.disable{
    color: lightgrey!important;
    background-color: #eee!important;
    cursor: not-allowed;
}

.zUI-bar.line .bar-box .nav{
    border: 2px solid white;
    float: left;
}
.zUI-bar .bar-box .nav.disable{
    background-color: white!important;
}
.zUI-bar.line .bar-box .nav.active{
    color: #004da5;font-weight: bold;
}


.zUI-bar.card .bar-box{
    position: relative;font-size: inherit;
}
.zUI-bar.card .bar-box .nav-line{
    width: 100%;
    height: 100%;border-bottom: 2px solid #004da5;
    position: relative;
}
.zUI-bar.card .bar-box .nav{
    color: #3a3a3a;
    float: left;
    position: relative;
    bottom: -1px;
    border-radius: 3px 3px 0 0;
}
.zUI-bar.card .bar-box .nav:not(:first-child):not(:last-child){
    margin: 0 5px;
}
.zUI-bar.card .bar-box .nav:first-child{
    margin-right: 5px;
}
.zUI-bar.card .bar-box .nav:last-child{
    margin-left: 5px;
}
.zUI-bar.card .bar-box .nav.active{
    color: #004da5;
	font-weight: bold;
}




.gduo{float:right;font-size: 16px;color: #999;position: absolute;right: 20px;top: 5px;}





.zUI-bar.sm .bar-box{
    height: 50px;
    line-height: 40px;
}
.zUI-bar.sm .bar-box .nav{
    min-width: 80px;
    max-width: 150px;
}
.zUI-bar.sm .content{
    height: calc(100% - 30px);
}
.zUI-bar.md .bar-box{
    height: 50px;
    line-height: 40px;
	border-bottom: 2px solid #004da5;position: relative;
}
.zUI-bar.md .bar-box .nav{
    min-width: 100px;
    max-width: 150px;
}

.zUI-bar.lg .bar-box{
    height: 50px;
    line-height: 50px;
}
.zUI-bar.lg .bar-box .nav{
    min-width: 120px;
    max-width: 150px;
}
.zUI-bar.lg .content{
    height: calc(100% - 50px);
}
.zUI-show{
    display: block!important;
}